home *** CD-ROM | disk | FTP | other *** search
/ El Mac 7 / El Mac 7.iso / Infotenimiento / Nettwerk - Decadence / Decadence Lite SOURCES / DECALITE.DIR / 00025.ls < prev    next >
Encoding:
Text File  |  1996-04-10  |  1.2 KB  |  46 lines

  1. on enterFrame
  2.   if rollOver(1) then
  3.     cursor([65, 66])
  4.     set the visible of sprite 9 to 1
  5.   else
  6.     if rollOver(2) then
  7.       cursor([65, 66])
  8.       set the visible of sprite 10 to 1
  9.     else
  10.       if rollOver(3) then
  11.         cursor([65, 66])
  12.         set the visible of sprite 11 to 1
  13.       else
  14.         if rollOver(4) then
  15.           cursor([65, 66])
  16.           set the visible of sprite 12 to 1
  17.         else
  18.           if rollOver(5) then
  19.             cursor([65, 66])
  20.             set the visible of sprite 13 to 1
  21.           else
  22.             if rollOver(6) then
  23.               cursor([65, 66])
  24.               set the visible of sprite 14 to 1
  25.             else
  26.               if rollOver(7) then
  27.                 cursor([65, 66])
  28.               else
  29.                 cursor(-1)
  30.                 set the visible of sprite 9 to 0
  31.                 set the visible of sprite 10 to 0
  32.                 set the visible of sprite 11 to 0
  33.                 set the visible of sprite 12 to 0
  34.                 set the visible of sprite 13 to 0
  35.                 set the visible of sprite 14 to 0
  36.               end if
  37.             end if
  38.           end if
  39.         end if
  40.       end if
  41.     end if
  42.   end if
  43.   set the soundEnabled to 1
  44.   go("first")
  45. end
  46.